home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / doc / sg3-utils / examples / archive / llseek.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-08-09  |  319 b   |  15 lines

  1. #ifndef LLSEEK_H
  2. #define LLSEEK_H
  3.  
  4. #if defined(__GNUC__) || defined(HAS_LONG_LONG)
  5. typedef long long llse_loff_t;
  6. #else
  7. typedef long      llse_loff_t;
  8. #endif
  9.  
  10. extern llse_loff_t llse_llseek(unsigned int fd,
  11.                                llse_loff_t offset,
  12.                                unsigned int origin);
  13.  
  14. #endif
  15.